home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / amos / AMOSList_0197.lzh / AMOSLIST / 000039_amos-request@svcs1.digex.net_Fri Jan 10 13:17:51 1997.msg < prev    next >
Internet Message Format  |  1997-02-02  |  4KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.           by mail2.access.digex.net (8.8.4/8.8.4) with ESMTP
  3.       id NAA29380 for <mcox@access.digex.net>; Fri, 10 Jan 1997 13:17:49 -0500 (EST)
  4. Received: (from daemon@localhost)
  5.           by svcs1.digex.net (8.8.4/8.8.4)
  6.       id JAA22034 for amos-out; Fri, 10 Jan 1997 09:05:06 -0500 (EST)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.           by svcs1.digex.net (8.8.4/8.8.4) with ESMTP
  9.       id JAA22031 for <amos-list@svcs1.digex.net>; Fri, 10 Jan 1997 09:05:05 -0500 (EST)
  10. Received: from golden.net (root@golden.org [199.166.210.2])
  11.           by mail3.access.digex.net (8.8.4/8.8.4) with ESMTP
  12.       id JAA14663 for <amos-list@access.digex.net>; Fri, 10 Jan 1997 09:05:00 -0500 (EST)
  13. Received: from golden.net (Giark@cisco3-173.golden.net [207.6.168.173]) by golden.net (8.8.2/8.6.12) with SMTP id JAA22637 for <amos-list@access.digex.net>; Fri, 10 Jan 1997 09:04:51 -0500 (EST)
  14. From: "Mr. Giark To You" <joehick@golden.net>
  15. To: AMOS List <amos-list@access.digex.net>
  16. Date: Fri, 10 Jan 1997 09:03:46 -0500
  17. Message-ID: <yam6949.2340.4745520@pop.golden.net>
  18. X-Mailer: YAM 1.3.3 - Amiga Mailer by Marcel Beck
  19. Subject: Re: A few bits 'n' pieces
  20. MIME-Version: 1.0
  21. Content-Type: text/plain
  22. Status: RO
  23. X-Status: 
  24.  
  25. On 09-Jan-97, Eric Hyland wrote:
  26. >Mr. Giark wrote
  27. >that you need to adjust the timing. I do not think it is necessary to 
  28. >adjust the timing in all cases, because some games like Q-Bic & Bloodfest
  29. >seam to run just fine in NTSC the only problem with those games is that you
  30. >cant see the bottom of the screen. As for the ___,200 screen mode this is
  31. >also probably not necessary to as the Amiga is not a stinking PC, and dos
  32. >not need ugly black borders. The Amiga has the ability to run in OVERSCAN
  33. >screen modes and Amos screen are OVERSCAN screens, so to get your game to
  34. >run on a NTSC Amiga why not do what the people who wrote Guardian for the
  35. >CD32 did which is to let the NTSC user move the PAL screen to the top of
  36. >the PAL OVERSCAN area. To do this use the ( Screen Display number,x,y,
  37. >width,height ) command increasing y lowers the screen decreasing y raises
  38. >the screen y normally is 40. NTSC OVERSCAN is ___,241
  39.  
  40. There are two problems with that. First, on NTSC machines, y is 50, not 40.
  41. Second, maximum overscan that AMOS will show is 234. (My wb screen is
  42. overscanned to 241 (482 interlace actually), but AMOS won't go that far. To
  43. show the maximum possible height on NTSC, you need to do the following:
  44.  
  45. Screen Open 1,640,234,16,Hires
  46. Screen Display 1,128,26,640,234
  47.  
  48. I've experimented a lot with this and that's the maximum I can get on the
  49. screen. BUT!
  50.  
  51. Why not add a couple lines to your PAL program that offers NTSC users the
  52. ability to switch modes? It only takes a couple lines of code and anyone with
  53. a 1Meg Agnus or AGA can do it.
  54.  
  55. A=Peek(Leek(4)+530)
  56. If A=60
  57.   Print "Switch to PAL (y/n)?"
  58.   A$=""
  59.   PAL:
  60.   Do
  61.     A$=Inkey$
  62.     If A$=""
  63.       Loop
  64.     Endif
  65.     A$=Lower$(A$)
  66.     If A$="y"
  67.       Doke $DFF1DC,$20
  68.       Poke Leek(4)+530,50
  69.       _SCREEN_HEIGHT=256
  70.       _TIMING=50
  71.       Goto _PROGRAM_BEGINS
  72.     Endif
  73.   If A$<>"n"
  74.     Goto PAL
  75.   Endif
  76. Endif
  77.  
  78. Well met and godspeed,
  79.                       Giark
  80.                                            joehick@golden.net
  81.                                    http://www.golden.net/~joehick/
  82.      ______  ______    _____  .------------------------------------------.
  83.     / ____/ / __  /   / ___ \ !     AMOS games, utilities, demos, etc.   !
  84.    / /__   / /_/ /   / /  / / !                                          !
  85.   / ___/  / ___  |  / /  / /  !       CyberSpace BBS (519)579-0072       !
  86.  / /     / /__/ /  / /  / /   !     on A2000 060/50MHz (519)579-0173     !
  87. /_/     /______/  /_/  /_/    !                                          !
  88.    Fly By Nite Videe-Oh!      !  FBN Amiga 500 020 14MHz 1C/5F RAM 3.1OS !
  89.                               `------------------------------------------'
  90.